home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / adg_4_6.zip / CUSTCNTL.DLG < prev    next >
Text File  |  1991-02-21  |  1KB  |  24 lines

  1. ABOUT DIALOG LOADONCALL MOVEABLE DISCARDABLE 16, 20, 126, 92
  2. CAPTION "About CustCntl Demo"
  3. STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_SYSMENU | WS_VISIBLE | WS_POPUP
  4. BEGIN
  5.     CONTROL "CustCntl", -1, "static", SS_ICON | WS_CHILD, 4, 16, 18, 21
  6.     CONTROL "CustCntl", -1, "static", SS_CENTER | WS_CHILD, 22, 8, 100, 12
  7.     CONTROL "Written by:", -1, "static", SS_CENTER | WS_CHILD, 22, 20, 100, 12
  8.     CONTROL "Jeffrey M. Richter", -1, "static", SS_CENTER | WS_CHILD, 22, 32, 100, 12
  9.     CONTROL "Version date:", -1, "static", SS_CENTER | WS_CHILD, 22, 48, 100, 12
  10.     CONTROL "", ID_VERSION, "static", SS_CENTER | WS_CHILD, 22, 60, 100, 12
  11.     CONTROL "&OK", 1, "button", BS_DEFPUSHBUTTON | WS_TABSTOP | WS_CHILD, 40, 76, 44, 12
  12. END
  13.  
  14. CUSTCNTL DIALOG LOADONCALL MOVEABLE DISCARDABLE 11, 22, 144, 36
  15. CAPTION "Custom control demonstration"
  16. STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_SYSMENU | WS_VISIBLE | WS_POPUP
  17. BEGIN
  18.     CONTROL "&Spin value:", -1, "static", SS_LEFT | WS_CHILD, 4, 4, 40, 12
  19.     CONTROL "", ID_SPINVALUE, "static", SS_LEFT | WS_BORDER | WS_CHILD, 44, 4, 32, 12
  20.     CONTROL "Text", ID_SPIN, "spin", WS_BORDER | WS_CHILD, 76, 4, 8, 12
  21.     CONTROL "Text", ID_METER, "meter", WS_BORDER | WS_CHILD, 4, 20, 96, 12
  22.     CONTROL "&Cancel", IDCANCEL, "button", BS_DEFPUSHBUTTON | WS_TABSTOP | WS_CHILD, 104, 4, 36, 12
  23. END
  24.